home *** CD-ROM | disk | FTP | other *** search
/ .net 2002 March / DotNetMagazine-Issue107-Coverdisc-NET107-02-03-PCMac.bin / pc / PC Software / free_browsing / DavesQckSearchDbar3-14 / dqsd.exe / src / build.cmd next >
OS/2 REXX Batch file  |  2002-06-28  |  343b  |  19 lines

  1. @echo off
  2.  
  3. REM For this build to work, both the VC tools and
  4. REM the NSIS tools need to be on your path.
  5.  
  6. REM call vcvars32.bat
  7.  
  8. pushd %~dp0
  9.  
  10. pushd DQSDTools
  11. nmake -f "DQSDTools.mak" CFG="DQSDTools - Win32 Release MinDependency"
  12.  
  13. copy /y ReleaseMinDependency\DQSDTools.dll ..\..\DQSDTools.dll
  14. popd
  15.  
  16. makensis search.nsi
  17.  
  18. popd
  19.